home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
islower.c
< prev
next >
Wrap
Text File
|
1993-02-01
|
173b
|
13 lines
/*
islower.C
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
*/
#define INCL_ISLOWER
int islower (int c)
{
return (c >= 'a' && c <= 'z');
}